* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background hero section */
.hero {
  background: url(/pictures/main\ backrgound.jpg) no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The transparent overlay box */
.overlay-box {
  background: rgba(255, 255, 255, 0.75);
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  max-width: 850px;
}

/* Logo styling */
.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 10px auto;
  display: block;
  transform: translateX(0);
}

/* Text styling */
.title {
  color: #1d7a3a;
  font-size: 3rem;
  letter-spacing: 2px;
  padding-top: 0px;
  
}

.tagline {
  color: #4e9a51;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.description {
  font-size: 1rem;
  color: #333;
  margin: 20px 0;
  line-height: 1.6;
  font-weight: bold;
}

/* Button styling */
.cta {
  display: inline-block;
  background-color: #f7eebb;
  color: #000;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta:hover {
  background-color: #e5daae;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 20px;
  }
  
  .overlay-box {
    padding: 30px 25px;
    max-width: 100%;
    margin: 0 15px;
  }
  
  .logo {
    width: 200px;
    height: auto;
    margin: 0 auto 15px auto;
  }
  
  .title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .tagline {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .description {
    font-size: 0.9rem;
    margin: 15px 0;
  }
  
  .cta {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .overlay-box {
    padding: 25px 20px;
  }
  
  .logo {
    width: 160px;
    height: auto;
    margin: 0 auto 10px auto;
  }
  
  .title {
    font-size: 1.5rem;
  }
  
  .tagline {
    font-size: 0.8rem;
  }
  
  .description {
    font-size: 0.85rem;
  }
  
  .cta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}